home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 September
/
EnigmA AMIGA RUN 30 (1998)(G.R. Edizioni)(IT)[!][issue 1998-09].iso
/
earkit
/
news
/
thor
/
rexx
/
fse
/
quote.fse
< prev
next >
Wrap
Text File
|
1998-07-09
|
306b
|
24 lines
/*
** $VER: Qoute.fse 1.0 (6.9.95)
** - qoutes all except empty lines
*/
options results
qoutechar = ">"
YPOS
currline = result
XPOS
currcolumn = result
MSGLENGTH
lastline = result
do i=1 to lastline
SETPOS 1 i
GETLINE
if(result ~= " ") then INSERTINPUT qoutechar
end
SETPOS currcolumn currline